From: Aurélien Aptel <aurelien.aptel@gmail.com>
Date: Thu, 26 Aug 2010 22:05:50 +0000 (+0200)
Subject: cleaned some spaces.
X-Git-Url: https://git.owens.tech/assets/lich_lifts_title_slice.png%20%22Lich%20Lifts%22/assets/lich_lifts_title_slice.png%20%22Lich%20Lifts%22/git?a=commitdiff_plain;h=42b2912e2151f02e181bd014ce1610f7e03a7d07;p=st.git

cleaned some spaces.
---

diff --git a/st.c b/st.c
index 8b0e510..9667dbd 100644
--- a/st.c
+++ b/st.c
@@ -440,11 +440,11 @@ tmoveto(int x, int y) {
 void
 twrapcursor(void) {
 	int y = term.c.y+1;
-    if(y > term.bot) {
-        tmoveto(0, term.bot);
-        tscroll();
-    } else 
-        tmoveto(0, y);
+	if(y > term.bot) {
+		tmoveto(0, term.bot);
+		tscroll();
+	} else 
+		tmoveto(0, y);
 }
 	
 void
@@ -971,10 +971,10 @@ tputc(char c) {
 			break;
 		default:
 			tsetchar(c);
-            if(term.c.x+1 < term.col) {
-                tmoveto(term.c.x+1, term.c.y);
-            } else if(IS_SET(MODE_WRAP))
-                twrapcursor();
+			if(term.c.x+1 < term.col) {
+				tmoveto(term.c.x+1, term.c.y);
+			} else if(IS_SET(MODE_WRAP))
+				twrapcursor();
 			break;
 		}
 	}